Test.php

<?php

namespace Tlf\Tester\Test\Runner;

class NestedTest extends \Tlf\Tester {

    /** called before tests are run */
    public function prepare(){}

    /** Test methods must prefix with `test` */
    public function testAnything(){
        $this->compare(true,true);
    }
}